lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.simplenote: init at 2.1.4

+28
+26
pkgs/development/python-modules/simplenote/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildPythonPackage 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 + }
+2
pkgs/top-level/python-packages.nix
··· 8745 8745 8746 8746 simplekml = callPackage ../development/python-modules/simplekml { }; 8747 8747 8748 + simplenote = callPackage ../development/python-modules/simplenote { }; 8749 + 8748 8750 simple-di = callPackage ../development/python-modules/simple-di { }; 8749 8751 8750 8752 simple-rest-client = callPackage ../development/python-modules/simple-rest-client { };