3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.immutables: init at 0.5

This commit is contained in:
Spencer Baugh 2018-05-08 22:14:03 +00:00
parent 86b37d1f94
commit 5862c6835a
2 changed files with 21 additions and 0 deletions

View 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 ];
};
}

View file

@ -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";