mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
pythonPackages.helper: init at 2.4.1
This commit is contained in:
parent
ad633d39dd
commit
53e9993f4e
@ -6837,6 +6837,31 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
helper = buildPythonPackage rec {
|
||||
pname = "helper";
|
||||
version = "2.4.1";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/h/${pname}/${name}.tar.gz";
|
||||
sha256 = "4e33dde42ad4df30fb7790689f93d77252cff26a565610d03ff2e434865a53a2";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ mock ];
|
||||
propagatedBuildInputs = with self; [ pyyaml ];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Development library for quickly writing configurable applications and daemons";
|
||||
homepage = https://helper.readthedocs.org/;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
|
||||
};
|
||||
|
||||
hglib = buildPythonPackage rec {
|
||||
version = "1.7";
|
||||
name = "hglib-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user