mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01: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`.
23 lines
522 B
Nix
23 lines
522 B
Nix
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dnspython";
|
|
version = "1.15.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "zip";
|
|
sha256 = "0z5d9vwf211v54bybrhm3qpxclys4dfdfsp7lk2hvf57yzhn7xa0";
|
|
};
|
|
|
|
# needs networking for some tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A DNS toolkit for Python 3.x";
|
|
homepage = http://www.dnspython.org;
|
|
# BSD-like, check http://www.dnspython.org/LICENSE for details
|
|
license = lib.licenses.free;
|
|
};
|
|
}
|