Merge pull request #102516 from NieDzejkob/sumtypes

pythonPackages.sumtypes: init at 0.1a5
This commit is contained in:
Sandro 2020-11-23 22:26:14 +01:00 committed by GitHub
commit 4b481d9b9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };