python3Packages.nixpkgs-pytools: init at 1.0.0 (#59279)
This commit is contained in:
parent
5908a0244f
commit
d27643bc0a
33
pkgs/development/python-modules/nixpkgs-pytools/default.nix
Normal file
33
pkgs/development/python-modules/nixpkgs-pytools/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1641,6 +1641,8 @@ in
|
|||||||
|
|
||||||
nfdump = callPackage ../tools/networking/nfdump { };
|
nfdump = callPackage ../tools/networking/nfdump { };
|
||||||
|
|
||||||
|
nixpkgs-pytools = with python3.pkgs; toPythonApplication nixpkgs-pytools;
|
||||||
|
|
||||||
noteshrink = callPackage ../tools/misc/noteshrink { };
|
noteshrink = callPackage ../tools/misc/noteshrink { };
|
||||||
|
|
||||||
noti = callPackage ../tools/misc/noti {
|
noti = callPackage ../tools/misc/noti {
|
||||||
|
@ -3374,6 +3374,8 @@ in {
|
|||||||
|
|
||||||
nixpkgs = callPackage ../development/python-modules/nixpkgs { };
|
nixpkgs = callPackage ../development/python-modules/nixpkgs { };
|
||||||
|
|
||||||
|
nixpkgs-pytools = callPackage ../development/python-modules/nixpkgs-pytools { };
|
||||||
|
|
||||||
nodeenv = callPackage ../development/python-modules/nodeenv { };
|
nodeenv = callPackage ../development/python-modules/nodeenv { };
|
||||||
|
|
||||||
nose = callPackage ../development/python-modules/nose { };
|
nose = callPackage ../development/python-modules/nose { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user