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

buildPythonPackage rec {
  pname = "nine";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e8a96b6326341637d25ca9c257c1d2af4033c957946438d9d37bf6eb798d3bbe";
  };

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

}