nixpkgs/pkgs/development/python-modules/simplenote/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

28 lines
594 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "simplenote";
version = "2.1.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "simplenote-vim";
repo = "simplenote.py";
rev = "v${version}";
sha256 = "1grvvgzdybhxjydalnsgh2aaz3f48idv5lqs48gr0cn7n18xwhd5";
};
propagatedBuildInputs = [ ];
meta = with lib; {
description = "Python library for the simplenote.com web service";
homepage = "http://readthedocs.org/docs/simplenotepy/en/latest/api.html";
license = licenses.mit;
maintainers = [ ];
};
}