nixpkgs/pkgs/development/python-modules/agate/default.nix

38 lines
1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildPythonPackage, isPy3k
, six, pytimeparse, parsedatetime, Babel
, isodate, python-slugify, leather
, glibcLocales, nose, lxml, cssselect, unittest2 }:
2017-05-03 04:08:10 +00:00
buildPythonPackage rec {
pname = "agate";
version = "1.6.1";
2017-05-03 04:08:10 +00:00
# PyPI tarball does not include all test files
# https://github.com/wireservice/agate/pull/716
src = fetchFromGitHub {
owner = "wireservice";
repo = pname;
rev = version;
sha256 = "077zj8xad8hsa3nqywvf7ircirmx3krxdipl8wr3dynv3l3khcpl";
};
2017-05-03 04:08:10 +00:00
propagatedBuildInputs = [
six pytimeparse parsedatetime Babel
isodate python-slugify leather
];
2017-05-03 04:08:10 +00:00
checkInputs = [ glibcLocales nose lxml cssselect ]
++ lib.optional (!isPy3k) unittest2;
2017-05-03 04:08:10 +00:00
checkPhase = ''
LC_ALL="en_US.UTF-8" nosetests tests
'';
meta = with lib; {
description = "A Python data analysis library that is optimized for humans instead of machines";
homepage = https://github.com/wireservice/agate;
license = with licenses; [ mit ];
maintainers = with maintainers; [ vrthra ];
};
2017-05-03 04:08:10 +00:00
}