python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / simplenote / default.nix
blob2c3203446683def26475171539f9d61c248e5985
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "simplenote";
9   version = "2.1.4";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "simplenote-vim";
14     repo = "simplenote.py";
15     rev = "v${version}";
16     sha256 = "1grvvgzdybhxjydalnsgh2aaz3f48idv5lqs48gr0cn7n18xwhd5";
17   };
19   propagatedBuildInputs = [ ];
21   meta = with lib; {
22     description = "Python library for the simplenote.com web service";
23     homepage = "http://readthedocs.org/docs/simplenotepy/en/latest/api.html";
24     license = licenses.mit;
25     maintainers = [ ];
26   };