nixpkgs-suyu/pkgs/development/python-modules/immutables/default.nix

20 lines
518 B
Nix
Raw Normal View History

2018-05-09 00:14:03 +02:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
buildPythonPackage rec {
pname = "immutables";
2018-06-12 18:47:01 +02:00
version = "0.6";
2018-05-09 00:14:03 +02:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2018-06-12 18:47:01 +02:00
sha256 = "63023fa0cceedc62e0d1535cd4ca7a1f6df3120a6d8e5c34e89037402a6fd809";
2018-05-09 00:14:03 +02:00
};
meta = {
description = "An immutable mapping type for Python";
homepage = https://github.com/MagicStack/immutables;
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ catern ];
};
}