summary refs log tree commit diff
path: root/pkgs/development/python-modules/first/default.nix
blob: 16c1d79d767a5d61122049f912f2be52f3cfa157 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "first";
  version = "2.0.1";
  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 ];
  };
}