aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/sumtypes/default.nix
blob: 4a3a22f2780cedd8a75a24caee06fc03b7cdc25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}