mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
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`.
18 lines
331 B
Nix
18 lines
331 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, boto }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Area53";
|
|
version = "0.94";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0v9b7f8b6v21y410anx5sr52k2ac8jrzdf19q6m6p0zsdsf9vr42";
|
|
};
|
|
|
|
# error: invalid command 'test'
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ boto ];
|
|
}
|