Skip to content

Commit

Permalink
python.pkgs.rdflib: move expression
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Feb 3, 2018
1 parent 14480a9 commit 54abfdc
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 18 deletions.
37 changes: 37 additions & 0 deletions pkgs/development/python-modules/rdflib/default.nix
@@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, isodate
, html5lib
, SPARQLWrapper
, networkx
, nose
, python
}:

buildPythonPackage rec {
pname = "rdflib";
version = "4.2.2";

src = fetchPypi {
inherit pname version;
sha256 = "0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs";
};

propagatedBuildInputs = [isodate html5lib SPARQLWrapper ];

checkInputs = [ networkx nose ];

# Python 2 syntax
# Failing doctest
doCheck = false;

checkPhase = ''
${python.interpreter} run_tests.py
'';

meta = {
description = "A Python library for working with RDF, a simple yet powerful language for representing information";
homepage = http://www.rdflib.net/;
};
}
19 changes: 1 addition & 18 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -15440,24 +15440,7 @@ in {
};


rdflib = buildPythonPackage (rec {
name = "rdflib-4.2.2";

src = pkgs.fetchurl {
url = "mirror://pypi/r/rdflib/${name}.tar.gz";
sha256 = "0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs";
};

# error: invalid command 'test'
doCheck = false;

propagatedBuildInputs = with self; [ isodate html5lib SPARQLWrapper ];

meta = {
description = "A Python library for working with RDF, a simple yet powerful language for representing information";
homepage = http://www.rdflib.net/;
};
});
rdflib = callPackage ../development/python-modules/rdflib { };

isodate = buildPythonPackage rec {
name = "isodate-${version}";
Expand Down

0 comments on commit 54abfdc

Please sign in to comment.