mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.django-sr: init at 0.0.4
This commit is contained in:
parent
e55f5fe4bc
commit
d18f4dcba3
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/django-sr/default.nix
Normal file
21
pkgs/development/python-modules/django-sr/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, django, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-sr";
|
||||
name = "${pname}-${version}";
|
||||
version = "0.0.4";
|
||||
|
||||
meta = {
|
||||
description = "Django settings resolver";
|
||||
homepage = https://github.com/jespino/django-sr;
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0d3yqppi1q3crcn9nxx58wzm4yw61d5m7435g6rb9wcamr9bi1im";
|
||||
};
|
||||
|
||||
buildInputs = [ django nose ];
|
||||
propagatedBuildInputs = [ django ];
|
||||
}
|
|
@ -8650,6 +8650,8 @@ in {
|
|||
|
||||
django-sites = callPackage ../development/python-modules/django-sites { };
|
||||
|
||||
django-sr = callPackage ../development/python-modules/django-sr { };
|
||||
|
||||
django_tagging = callPackage ../development/python-modules/django_tagging { };
|
||||
|
||||
django_tagging_0_3 = self.django_tagging.overrideAttrs (attrs: rec {
|
||||
|
|
Loading…
Reference in a new issue