linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / sumtypes / default.nix
blob4a3a22f2780cedd8a75a24caee06fc03b7cdc25c
1 { lib, buildPythonPackage, fetchFromGitHub, attrs, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "sumtypes";
5   version = "0.1a5";
7   src = fetchFromGitHub {
8     owner = "radix";
9     repo = "sumtypes";
10     rev = version;
11     sha256 = "0wcw1624xxx2h6lliv13b59blg60j8sgf5v2ni3cwx3j4wld4csr";
12   };
14   propagatedBuildInputs = [ attrs ];
15   checkInputs = [ pytestCheckHook ];
17   meta = with lib; {
18     description = "Algebraic data types for Python";
19     homepage = "https://github.com/radix/sumtypes";
20     license = licenses.mit;
21     maintainers = with maintainers; [ NieDzejkob ];
22   };