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