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`.
27 lines
604 B
Nix
27 lines
604 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonref";
|
|
version = "0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1lqa8dy1sr1bxi00ri79lmbxvzxi84ki8p46zynyrgcqhwicxq2n";
|
|
};
|
|
|
|
buildInputs = [ pytest mock ];
|
|
|
|
checkPhase = ''
|
|
py.test tests.py
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An implementation of JSON Reference for Python";
|
|
homepage = "https://github.com/gazpachoking/jsonref";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nand0p ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|