python3Packages.simplenote: init at 2.1.4

This commit is contained in:
Markus S. Wamser 2021-12-10 22:58:48 +01:00
parent 8af12f157a
commit b58a501413
2 changed files with 28 additions and 0 deletions

View 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; [ ];
};
}

View file

@ -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 { };