summary refs log tree commit diff
path: root/pkgs/development/python-modules/nine/default.nix
blob: a6b163ed456fb7f2b4fc727a609556ba4b80a38c (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 = "nine";
  version = "0.3.4";

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

  meta = with stdenv.lib; {
    description = "Let's write Python 3 right now!";
    homepage = "https://github.com/nandoflorestan/nine";
    license = licenses.free;
  };

}