forked from mirrors/nixpkgs
pythonPackages.immutables: init at 0.5
This commit is contained in:
parent
86b37d1f94
commit
5862c6835a
19
pkgs/development/python-modules/immutables/default.nix
Normal file
19
pkgs/development/python-modules/immutables/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "immutables";
|
||||
version = "0.5";
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1hba0vkqanwfnb5b3rs14bs7schsmczhan5nd93c1i6fzi17glap";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "An immutable mapping type for Python";
|
||||
homepage = https://github.com/MagicStack/immutables;
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
maintainers = with lib.maintainers; [ catern ];
|
||||
};
|
||||
}
|
|
@ -3120,6 +3120,8 @@ in {
|
|||
|
||||
imbalanced-learn = callPackage ../development/python-modules/imbalanced-learn { };
|
||||
|
||||
immutables = callPackage ../development/python-modules/immutables {};
|
||||
|
||||
imread = buildPythonPackage rec {
|
||||
name = "python-imread-${version}";
|
||||
version = "0.6";
|
||||
|
|
Loading…
Reference in a new issue