summaryrefslogtreecommitdiff
path: root/pkgs/python/bw-file-resubmit.nix
blob: b21234f2f6c4818f3ac26f95495133074b8845d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchPypi
, django
, python
, setuptools
}:

buildPythonPackage rec {
  pname = "bw-file-resubmit";
  version = "0.6.0rc2";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-wWZcRMRTCYCIOKtgaIQPIqxZ+8T49cZVsBXm0bJT+Ew=";
  };

  propagatedBuildInputs = [
    django
    setuptools
  ];

  nativeCheckInputs = [
    django
  ];
}