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

buildPythonPackage rec {
  pname = "args";
  version = "0.1.0";

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

  meta = with stdenv.lib; {
    description = "Command Arguments for Humans";
    homepage = https://github.com/kennethreitz/args;
  };
}