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

20 lines
506 B
Nix
Raw Normal View History

2018-05-08 23:14:03 +01:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
buildPythonPackage rec {
pname = "immutables";
version = "0.9";
2018-05-08 23:14:03 +01:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "1h7i00x6sdbw62rdipp0kaw1mcrvfipxv0054x1n2r4q4j11q7fp";
2018-05-08 23:14:03 +01: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 ];
};
}