1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "simplenote";
9 version = "2.1.4";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "simplenote-vim";
14 repo = "simplenote.py";
15 rev = "v${version}";
16 sha256 = "1grvvgzdybhxjydalnsgh2aaz3f48idv5lqs48gr0cn7n18xwhd5";
17 };
18
19 propagatedBuildInputs = [ ];
20
21 meta = with lib; {
22 description = "Python library for the simplenote.com web service";
23 homepage = "http://readthedocs.org/docs/simplenotepy/en/latest/api.html";
24 license = licenses.mit;
25 maintainers = [ ];
26 };
27}