ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
15 lines
314 B
Nix
15 lines
314 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, requests, six, dateutil }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hypchat";
|
|
version = "0.21";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests six dateutil ];
|
|
}
|