Merge pull request #102516 from NieDzejkob/sumtypes
pythonPackages.sumtypes: init at 0.1a5
This commit is contained in:
commit
4b481d9b9f
23
pkgs/development/python-modules/sumtypes/default.nix
Normal file
23
pkgs/development/python-modules/sumtypes/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, attrs, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sumtypes";
|
||||
version = "0.1a5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "radix";
|
||||
repo = "sumtypes";
|
||||
rev = version;
|
||||
sha256 = "0wcw1624xxx2h6lliv13b59blg60j8sgf5v2ni3cwx3j4wld4csr";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ attrs ];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Algebraic data types for Python";
|
||||
homepage = "https://github.com/radix/sumtypes";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ NieDzejkob ];
|
||||
};
|
||||
}
|
@ -7009,6 +7009,8 @@ in {
|
||||
|
||||
sumo = callPackage ../development/python-modules/sumo { };
|
||||
|
||||
sumtypes = callPackage ../development/python-modules/sumtypes { };
|
||||
|
||||
sunpy = callPackage ../development/python-modules/sunpy { };
|
||||
|
||||
supervise_api = callPackage ../development/python-modules/supervise_api { };
|
||||
|
Loading…
Reference in New Issue
Block a user