depot/third_party/nixpkgs/pkgs/development/python-modules/simplenote/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

26 lines
588 B
Nix

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