Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / simplenote / default.nix
blob1a00b7ef5b6a449587ccf59558d1f66ef3652e42
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "simplenote";
8   version = "2.1.4";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "simplenote-vim";
13     repo = "simplenote.py";
14     rev = "v${version}";
15     sha256 = "1grvvgzdybhxjydalnsgh2aaz3f48idv5lqs48gr0cn7n18xwhd5";
16   };
18    propagatedBuildInputs = [ ];
20    meta = with lib; {
21     description = "A python library for the simplenote.com web service";
22     homepage = "http://readthedocs.org/docs/simplenotepy/en/latest/api.html";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ];
25    };