python3Packages.nixpkgs-pytools: init at 1.0.0 (#59279)

This commit is contained in:
Christopher Ostrouchov 2019-04-11 12:31:00 -04:00 committed by Robert Schütz
parent 5908a0244f
commit d27643bc0a
3 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, jinja2
, setuptools
, isPy27
}:
buildPythonPackage rec {
pname = "nixpkgs-pytools";
version = "1.0.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "6aaf1e990be639a0d01afb454756606f3111dd8c596b6e848d4a0cec019168d0";
};
propagatedBuildInputs = [
jinja2
setuptools
];
# 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 = [ maintainers.costrouc ];
};
}

View file

@ -1641,6 +1641,8 @@ in
nfdump = callPackage ../tools/networking/nfdump { };
nixpkgs-pytools = with python3.pkgs; toPythonApplication nixpkgs-pytools;
noteshrink = callPackage ../tools/misc/noteshrink { };
noti = callPackage ../tools/misc/noti {

View file

@ -3374,6 +3374,8 @@ in {
nixpkgs = callPackage ../development/python-modules/nixpkgs { };
nixpkgs-pytools = callPackage ../development/python-modules/nixpkgs-pytools { };
nodeenv = callPackage ../development/python-modules/nodeenv { };
nose = callPackage ../development/python-modules/nose { };