mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.immutables: init at 0.5
This commit is contained in:
parent
86b37d1f94
commit
5862c6835a
2 changed files with 21 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue