summary refs log tree commit diff
path: root/pkgs/development/python-modules/first/default.nix
blob: 5ecbff90442d4b9030a4b6816122b7f599542755 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi }:
let
  pname = "first";
  version = "2.0.1";
in
buildPythonPackage {
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0pn9hl2y0pz61la1xhkdz6vl9i2dg3nh0ksizcf0f9ybh8sxxcrv";
  };

  doCheck = false; # no tests

  meta = with stdenv.lib; {
    description = "The function you always missed in Python";
    homepage = https://github.com/hynek/first/;
    license = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
  };
}