mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
python3Packages.immutables: enable tests
This commit is contained in:
parent
88e73dbe89
commit
a11c0d0680
1 changed files with 13 additions and 4 deletions
|
@ -1,4 +1,9 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "immutables";
|
||||
|
@ -10,10 +15,14 @@ buildPythonPackage rec {
|
|||
sha256 = "3713ab1ebbb6946b7ce1387bb9d1d7f5e09c45add58c2a2ee65f963c171e746b";
|
||||
};
|
||||
|
||||
meta = {
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "immutables" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An immutable mapping type for Python";
|
||||
homepage = "https://github.com/MagicStack/immutables";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
maintainers = with lib.maintainers; [ catern ];
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ catern ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue