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

buildPythonPackage rec {
  pname = "first";
  version = "2.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1gykyrm6zlrbf9iz318p57qwk594mx1jf0d79v79g32zql45na7z";
  };

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