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`.
33 lines
666 B
Nix
33 lines
666 B
Nix
{ stdenv, buildPythonPackage, fetchFromGitHub, ninja, boost, meson, pkgconfig, nix, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pythonix";
|
|
version = "0.1.4";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Mic92";
|
|
repo = "pythonix";
|
|
rev = "v${version}";
|
|
sha256 = "1q1fagfwzvmcm1n3a0liay7m5krazmhw9l001m90rrz2x7vrsqwk";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig ];
|
|
|
|
buildInputs = [ nix boost ];
|
|
|
|
checkPhase = ''
|
|
ninja test
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''
|
|
Eval nix code from python.
|
|
'';
|
|
maintainers = [ maintainers.mic92 ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|