biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / args / default.nix
blob28170c20e92c3a1690f25d6dc58b60f89e49412a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "args";
9   version = "0.1.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814";
15   };
17   meta = with lib; {
18     description = "Command Arguments for Humans";
19     homepage = "https://github.com/kennethreitz/args";
20   };