depot/third_party/nixpkgs/pkgs/development/python-modules/nixpkgs-pytools/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

36 lines
680 B
Nix

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