python3Packages.simplenote: init at 2.1.4
This commit is contained in:
parent
8af12f157a
commit
b58a501413
26
pkgs/development/python-modules/simplenote/default.nix
Normal file
26
pkgs/development/python-modules/simplenote/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "simplenote";
|
||||
version = "2.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simplenote-vim";
|
||||
repo = "simplenote.py";
|
||||
rev = "v${version}";
|
||||
sha256 = "1grvvgzdybhxjydalnsgh2aaz3f48idv5lqs48gr0cn7n18xwhd5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A python library for the simplenote.com web service";
|
||||
homepage = "http://readthedocs.org/docs/simplenotepy/en/latest/api.html";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
|
||||
}
|
@ -8745,6 +8745,8 @@ in {
|
||||
|
||||
simplekml = callPackage ../development/python-modules/simplekml { };
|
||||
|
||||
simplenote = callPackage ../development/python-modules/simplenote { };
|
||||
|
||||
simple-di = callPackage ../development/python-modules/simple-di { };
|
||||
|
||||
simple-rest-client = callPackage ../development/python-modules/simple-rest-client { };
|
||||
|
Loading…
Reference in New Issue
Block a user