Files
2026-05-31 15:15:50 +03:00

36 lines
652 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jinja2,
setuptools,
rope,
}:
buildPythonPackage rec {
pname = "nixpkgs-pytools";
version = "1.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "11skcbi1lf9qcv9j5ikifb4pakhbbygqpcmv3390j7gxsa85cn19";
};
propagatedBuildInputs = [
jinja2
setuptools
rope
];
# tests require network ..
doCheck = false;
meta = {
description = "Tools for removing the tedious nature of creating nixpkgs derivations";
homepage = "https://github.com/nix-community/nixpkgs-pytools";
license = lib.licenses.mit;
maintainers = [ ];
};
}