mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
pythonPackages.enrich: init at 1.2.6
This commit is contained in:
parent
4b7e688d10
commit
81bcb24ea2
26
pkgs/development/python-modules/enrich/default.nix
Normal file
26
pkgs/development/python-modules/enrich/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, setuptools-scm, rich, pytest-mock }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "enrich";
|
||||
version = "1.2.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Dpn/V9h/e13vDKeZF+iPuTUaoNUuIo7ji/982FgxX+Q=";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools-scm ];
|
||||
|
||||
propagatedBuildInputs = [ rich ];
|
||||
|
||||
checkInputs = [ pytestCheckHook pytest-mock ];
|
||||
|
||||
pythonImportsCheck = [ "enrich" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Enrich adds few missing features to the wonderful rich library";
|
||||
homepage = "https://github.com/pycontribs/enrich";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
@ -2113,6 +2113,8 @@ in {
|
||||
|
||||
enamlx = callPackage ../development/python-modules/enamlx { };
|
||||
|
||||
enrich = callPackage ../development/python-modules/enrich { };
|
||||
|
||||
entrance = callPackage ../development/python-modules/entrance {
|
||||
routerFeatures = false;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user