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

20 lines
519 B
Nix
Raw Normal View History

2018-05-08 23:14:03 +01:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
buildPythonPackage rec {
pname = "immutables";
2019-10-24 07:47:35 +01:00
version = "0.11";
2018-05-08 23:14:03 +01:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:35 +01:00
sha256 = "d6850578a0dc6530ac19113cfe4ddc13903df635212d498f176fe601a8a5a4a3";
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 ];
};
}