nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildPythonPackage, fetchPypi, django, django-appconf }:
2
3buildPythonPackage rec {
4 pname = "django-statici18n";
5 version = "2.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "dbcdac190d93e0b4eabcab8875c8eb68795eceb442f926843ec5cbe1432fe628";
10 };
11
12 propagatedBuildInputs = [ django django-appconf ];
13
14 # pypi package does not contains test harness
15 # source tarball requires setting up a config
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Helper for generating Javascript catalog to static files";
20 homepage = "https://github.com/zyegfryed/django-statici18n";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ greizgh schmittlauch ];
23 };
24}